@charset "UTF-8";
/* CSS Document */
/* ベースのスタイル */
html {
  font-size: 62.5% !important; /* remの基準となるフォントサイズを設定（10px） */
}
@media (max-width: 768px) {
  html {
    /*font-size: 50%;*/
  }
}
.pc {
  display: block;
}
.sp {
  display: none;
}
select:focus,input[type="checkbox"]:focus,input[type="radio"]:focus {
  outline: none;
}
button[type="submit"]:focus,a:focus,textarea:focus,input[type="text"]:focus,.inputframe:focus-within {
  outline: solid #0000ff 1.5px !important;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  line-height: 1.6 !important;
  color: #333;
  font-size: 1.8rem; /* bodyのフォントサイズをremで指定（16px） */
}
.inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 7rem 0;
}
h2.sec_ttl {
  font-size: 3.2rem;
  text-align: center;
  margin: 0 0 2.5rem;
}
p {
  margin: 0 0 2rem;
  line-height: 1.5;
  font-size: 1.6rem;
}
a {
  color: #0A5394;
}
img {
  width: 100%;
  height: auto;
}
.btn a {
  display: block;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 768px) {
  .inner {
    max-width: 95%;
    margin: 0 auto;
    padding: 3.5rem 0;
  }
  h2.sec_ttl {
    font-size: 6.5vw;
  }
}
/* ヘッダーのスタイル */
#header {
  background-color: #fff;
}
#header .inner {
  padding: 1.5rem 0;
}
#header .inner .logo figure {
  width: 145px;
}
@media (max-width: 768px) {
  #header .inner .logo figure {
    width: 27.7%;
  }
}
/* section 背景色 */
.bg_gray {
  background-color: #f3f3f3;
}
.bg_white {
  background-color: #fff;
}
.bg_red {
  background-color: #f8eded;
}
/* font color */
.fc_red {
  color: #cf142b;
}
/* メインコンテンツのスタイル */
#main {
  padding: 0;
}
/*
	メインビジュアル
---------------------------------*/
@media (max-width: 768px) {}
/*
	Section style lead
---------------------------------*/
#lead .inner {
  padding: 5rem 0;
}
#lead .inner .lead_ttl {
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #lead .inner .lead_ttl {
    font-size: 5.6vw;
  }
}
.lead_txt .inner {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .lead_txt .inner {
    padding: 3rem 0;
  }
}
/*
	Section style lead_txt
---------------------------------*/
.lead_txt .inner p {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .lead_txt .inner p {
    font-size: 4vw;
  }
}
/*
	Section style step
---------------------------------*/
#step .inner {
  padding: 7rem 0 8.5rem;
}
#step .inner .step_UL {
  display: flex;
  justify-content: space-between;
}
#step .inner .step_UL li {
  background-color: #fff;
  width: 446px;
  padding: 25px 30px 0;
  position: relative;
}
#step .inner .step_UL li::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 28px 18px;
  border-color: transparent transparent transparent #FFFFFF;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
#step .inner .step_UL li::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 28px 18px;
  border-color: transparent transparent transparent #F8EDED;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#step .inner .step_UL li:nth-child(3)::after {
  display: none;
}
#step .inner .step_UL li:nth-child(1)::before {
  display: none;
}
#step .inner .step_UL li .tag {
  background-color: #cf142b;
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 3px 13px;
}
#step .inner .step_UL li .step_ttl_box {
  display: flex;
  margin: 0 0 5px;
}
#step .inner .step_UL li .step_ttl_box figure {
  width: 72px;
  height: 72px;
  margin: 0 10px 0 0;
}
#step .inner .step_UL li .step_ttl_box .step_ttl {
  color: #cf142b;
  font-size: 2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #step .inner {
    padding: 3.5rem 0;
  }
  #step .inner .step_UL {
    display: block;
  }
  #step .inner .step_UL li {
    width: 100%;
    padding: 25px 30px;
    margin-bottom: 12px;
  }
  #step .inner .step_UL li::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 28px 0 28px;
    border-color: #FFFFFF transparent transparent transparent;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
  }
  #step .inner .step_UL li::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 28px 0 28px;
    border-color: #F8EDED transparent transparent transparent;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
}
/*
	Section style contact_form
---------------------------------*/
#contact_form .inner .sec_ttl {
  margin: 0 0 7rem;
}
#contact_form .inner form .form_contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#contact_form .inner form .form_contents li {
  width: 430px;
}

#contact_form .inner form .form_contents li dl {
  margin: 0 0 4rem;
}
#contact_form .inner form .form_contents li dl dt {
  font-size: 1.6rem;
  margin: 0 0 8px;
}
.caution {
  background-color: #cf142b;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 4px 15px;
  margin: 0 10px 0 0;
}
#contact_form .inner form .form_contents li dl dt P {
  display: flex;
  align-items: center;
}
#contact_form .inner form .form_contents li dl dd {
  font-size: 1.6rem;
}
#contact_form .inner form .form_contents li dl dd p {
  font-size: 1.38rem;
  padding: 8px 0 0;
  font-weight: 500;
}
#contact_form .inner form .form_contents li dl dd > ul {
  display: flex;
}
#contact_form .inner form .form_contents li dl dd > ul li {}
input[type=text], input[type=tel], input[type=email] {}
input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus {
  outline: 0;
}
input[type=text] {
  border: solid 1px #c9c9c9;
  border-radius: 4px;
  height: 44px;
  padding: 10px 15px;
}
#last-name, #first-name {
  width: 188px;
}
#email-address, #business-phone, #company, #description, #address-3 {
  width: 430px;
}
#address-2 {
  width: 442px;
}
#inquiry-product {
  width: 100%;
}
input::placeholder {
  color: #c9c9c9;
  font-size: 1.5rem;
}
.select {
  width: 430px;
  height: 44px;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.select select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #333;
  font-size: 16px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 7px;      
  box-sizing: border-box;
}
.select::after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #cf142b;
  border-right: 2px solid #cf142b;
  z-index: 1;
}
input[type=radio] {
  margin-right: 8px;
}
/* ラジオボタン */
.radio_btns input[type=radio] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.radio_btns label {
  margin-right: 20px;
  position: relative;
  padding-left: 15px;
  white-space: nowrap;
}
/*.radio_btns input[type=radio] + label::before*/
.radio_btns label input[type=radio]::before {
  position: absolute;
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #cacaca;
  left: 0;
  top: 2.5px;
}
.radio_btns label input[type=radio]::after {
  position: absolute;
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e3175;
  left: 4px;
  top: 6.5px;
  opacity: 0;
  transition: .3s;
}
.radio_btns label input[type=radio]:checked::after {
  opacity: 1;
}
textarea {
  width: 100%;
  border: solid 1px #c9c9c9;
  border-radius: 4px;
  padding: 10px 15px;
}
textarea::placeholder {
  color: #c9c9c9;
  font-size: 1.5rem;
}
#contact_form .inner form .privacy_sec {
  background-color: #f3f3f3;
  padding: 4rem;
}
#contact_form .inner form .privacy_sec h4 {
  font-size: 1.6rem;
}
#contact_form .inner form .privacy_sec h4 a {
  color: #333;
}
input[type=checkbox] {
  /*margin-right: 8px;*/
}
.check_btn input[type=checkbox] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.check_btn label {
  position: relative;
  padding-left: 25px;
  font-size: 1.5rem;
  white-space: nowrap;
}
.check_btn label input[type=checkbox]::before {
  position: absolute;
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  left: 0;
  top: 3px;
}
.check_btn label input[type=checkbox]::after {
  position: absolute;
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  transform: rotate(45deg);
  border-right: 3px solid #c2004a;
  border-bottom: 3px solid #c2004a;
  left: 5px;
  top: 4px;
  opacity: 0;
  transition: .3s;
}
.check_btn label input[type=checkbox]:checked::after {
  opacity: 1;
}
.submit_btn {
  display: block;
  width: 420px;
  margin: 5rem auto 0;
  position: relative;
  padding: 12px 10px;
  border: 2px solid #cf142b;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  background-color: #cf142b;
  cursor: pointer;
  color: #FFF;
  border-radius: 4px;
}
.submit_btn::after {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.submit_btn:hover {
  background: #fff;
  color: #cf142b;
  transition: .3s;
}
@media (max-width: 768px) {
  #contact_form .inner .sec_ttl {
    margin: 0 0 3.5rem;
  }
  #contact_form .inner form .form_contents li {
    width: 100%;
  }
  #first-name, #last-name {
    width: 87.5%;
  }
  #email-address, #business-phone, #company, #description, #address-3 {
    width: 100%;
  }
  #address-2 {
    width: 100%;
  }
	#contact_form .inner form .privacy_sec {
		padding: 15px 20px;
	}
  #contact_form .inner form .privacy_sec .check_btn .caution {
    display: inline-block;
    padding: 3px 15px;
    margin-bottom: 5px;
  }
  .select {
    width: 100%;
  }
  .submit_btn {
    width: 100%;
  }
  .tx_indent {}
}
/*
	Section style
---------------------------------*/
@media (max-width: 768px) {}
